home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / netlib / RCS / Net_StringToEtherAddr.c,v < prev    next >
Text File  |  1988-11-21  |  2KB  |  110 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     88.11.21.09.28.33;  author mendel;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.11.21.09.10.27;  author mendel;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @Formed from net.c of src/lib/old/net.c.
  22. @
  23.  
  24.  
  25. 1.2
  26. log
  27. @Fixed typo.
  28. @
  29. text
  30. @/* 
  31.  * Net_StringToEtherAddr.c --
  32.  *
  33.  *    Convert a string to an ethernet address.
  34.  *
  35.  * Copyright 1987 Regents of the University of California
  36.  * All rights reserved.
  37.  * Permission to use, copy, modify, and distribute this
  38.  * software and its documentation for any purpose and without
  39.  * fee is hereby granted, provided that the above copyright
  40.  * notice appear in all copies.  The University of California
  41.  * makes no representations about the suitability of this
  42.  * software for any purpose.  It is provided "as is" without
  43.  * express or implied warranty.
  44.  */
  45.  
  46. #ifndef lint
  47. static char rcsid[] = "$Header: /sprite/src/lib/net/RCS/Net_StringToEtherAddr.c,v 1.1 88/11/21 09:10:27 mendel Exp Locker: mendel $ SPRITE (Berkeley)";
  48. #endif not lint
  49.  
  50.  
  51. #include "sprite.h"
  52. #include "net.h"
  53.  
  54. /*
  55.  *----------------------------------------------------------------------
  56.  *
  57.  * Net_StringToEtherAddr --
  58.  *
  59.  *    This routine takes a string form of an Ethernet address and
  60.  *    converts it to the Net_EtherAddress form. The string must be
  61.  *    null-terminated.
  62.  *
  63.  * Results:
  64.  *    The Ethernet address in the Net_EtherAddress form.
  65.  *
  66.  * Side effects:
  67.  *    None.
  68.  *
  69.  *----------------------------------------------------------------------
  70.  */
  71.  
  72. void
  73. Net_StringToEtherAddr(buffer, etherAddressPtr)
  74.     register char *buffer;
  75.     Net_EtherAddress *etherAddressPtr;
  76. {
  77.     unsigned int byte[6];
  78.  
  79.     if (sscanf(buffer, "%2x:%2x:%2x:%2x:%2x:%2x",
  80.         &byte[0], &byte[1], &byte[2], &byte[3], &byte[4], &byte[5]) != 6) {
  81.     bzero((Address)etherAddressPtr, sizeof(Net_EtherAddress) );
  82.     } else {
  83.     NET_ETHER_ADDR_BYTE1(*etherAddressPtr) = byte[0];
  84.     NET_ETHER_ADDR_BYTE2(*etherAddressPtr) = byte[1];
  85.     NET_ETHER_ADDR_BYTE3(*etherAddressPtr) = byte[2];
  86.     NET_ETHER_ADDR_BYTE4(*etherAddressPtr) = byte[3];
  87.     NET_ETHER_ADDR_BYTE5(*etherAddressPtr) = byte[4];
  88.     NET_ETHER_ADDR_BYTE6(*etherAddressPtr) = byte[5];
  89.     }
  90. }
  91.  
  92. @
  93.  
  94.  
  95. 1.1
  96. log
  97. @Initial revision
  98. @
  99. text
  100. @d18 1
  101. a18 1
  102. static char rcsid[] = "$Header: net.c,v 2.0 87/08/11 09:34:20 brent Exp $ SPRITE (Berkeley)";
  103. d44 1
  104. a44 1
  105. Net_StringToEtherAddr(buffer, etherAddrPtr)
  106. d46 1
  107. a46 1
  108.     Net_EtherAddress *etherAddrPtr;
  109. @
  110.